home *** CD-ROM | disk | FTP | other *** search
- #!/bin/bash
- # Compilation script for Sound Studio
- # by Paul D. Sharpe
- echo Building maxmin...
- gcc -O2 maxmin.c -o maxmin
- echo Building studio_mixer...
- gcc s_mixer.c -o studio_mixer
- echo Building studio_tool...
- gcc s_tool.c -o studio_tool
- echo Locating wish:
- whereis wish
-